home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / Error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-10  |  258 b   |  12 lines  |  [TEXT/KAHL]

  1. /* Error.h */
  2.  
  3. #pragma once
  4.  
  5. #ifndef COMPILING_ERROR_C
  6.     extern MyBoolean GlobalErrorStatus;
  7. #endif
  8.  
  9. #define ResetErrorCheck(glop) GlobalErrorStatus = False
  10. #define SetErrorStatus(glop) GlobalErrorStatus = True
  11. #define ErrorOccurred(glop) (GlobalErrorStatus)
  12.